07. Tag Selectors

Tag Selectors

Tag Selectors

Just like you saw in the previous video, consider a web page with multiple paragraph tags. If we write a CSS ruleset use a p selector, which paragraph(s) would be affected by the style?

p {
  background-colors: pink;
{
SOLUTION: All paragraphs

Solution

Here's how we approached solving this exercise:

Tag Selectors